home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304C.ZIP;1 / EXC.ARJ / FGDOC / EXAMPLES / C / 14-06.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-24  |  273 b   |  18 lines

  1. #include <fastgraf.h>
  2. #include <stdio.h>
  3.  
  4. void main(void);
  5.  
  6. void main()
  7. {
  8.    int status;
  9.  
  10.    fg_setmode(-1);
  11.    status = fg_mouseini();
  12.  
  13.    if (status < 0)
  14.       printf("Mouse not available.\n");
  15.    else
  16.       printf("%d button mouse found.\n",status);
  17. }
  18.